home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Applications / gdbm-1.7.3 / source / Makefile.in < prev    next >
Makefile  |  1994-05-21  |  6KB  |  230 lines

  1. #### Start of system configuration section. ####
  2.  
  3. srcdir = @srcdir@
  4. VPATH = @srcdir@
  5.  
  6. CC = @CC@
  7.  
  8. INSTALL = @INSTALL@
  9. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  10. INSTALL_DATA = @INSTALL_DATA@
  11.  
  12. MAKEINFO = makeinfo
  13. TEXI2DVI = texi2dvi
  14. RANLIB = @RANLIB@
  15.  
  16. DEFS =
  17.  
  18. # Where the system [n]dbm routines are...
  19. LIBS = @LIBS@ -lc
  20.  
  21. # SunOS users might wish to add '-fpcc-struct-return' to CFLAGS. see INSTALL.
  22. CFLAGS = -O
  23. LDFLAGS =
  24.  
  25. # Common prefix for installation directories
  26. prefix = /usr/local
  27. exec_prefix = $(prefix)
  28. binprefix = $(exec_prefix)
  29. manprefix = $(prefix)
  30.  
  31. # Directory in which to put libgdbm.a.
  32. libdir = $(exec_prefix)/lib
  33. # The include directory for gdbm.h and dbm.h.
  34. includedir = $(prefix)/include
  35. # Info and man directories.
  36. infodir = $(prefix)/info
  37. man3dir = $(prefix)/man/man3
  38. manext = 3
  39.  
  40. #### End of system configuration section. ####
  41.  
  42. .c.o:
  43.     $(CC) -c $(CPPFLAGS) $(DEFS) -I. -I$(srcdir) $(CFLAGS) $<
  44.  
  45. SHELL = /bin/sh
  46.  
  47. PROGS = libgdbm.a testgdbm testdbm testndbm tndbm tdbm conv2gdbm
  48.  
  49. DBM_CF = dbminit.c delete.c fetch.c store.c seq.c close.c
  50.  
  51. NDBM_CF = dbmopen.c dbmdelete.c dbmfetch.c dbmstore.c dbmseq.c \
  52.     dbmclose.c dbmdirfno.c dbmpagfno.c dbmrdonly.c
  53.  
  54. GDBM_CF = gdbmopen.c gdbmdelete.c gdbmfetch.c  gdbmstore.c gdbmclose.c \
  55.     gdbmreorg.c gdbmseq.c gdbmsync.c gdbmerrno.c gdbmexists.c gdbmsetopt.c \
  56.     bucket.c falloc.c findkey.c global.c hash.c update.c \
  57.     version.c
  58.  
  59. TEST_CF = testdbm.c testndbm.c testgdbm.c
  60.  
  61.  
  62. DBM_OF = dbminit.o delete.o fetch.o store.o seq.o close.o
  63.  
  64. NDBM_OF = dbmopen.o dbmdelete.o dbmfetch.o dbmstore.o dbmseq.o \
  65.     dbmclose.o dbmdirfno.o dbmpagfno.o dbmrdonly.o
  66.  
  67. GDBM_OF = gdbmopen.o gdbmdelete.o gdbmfetch.o  gdbmstore.o gdbmclose.o \
  68.     gdbmreorg.o gdbmseq.o gdbmsync.o gdbmerrno.o gdbmexists.o gdbmsetopt.o \
  69.     bucket.o falloc.o findkey.o global.o hash.o update.o \
  70.     version.o
  71.  
  72. TEX_F = gdbm.aux gdbm.cp gdbm.dvi gdbm.fn gdbm.ky gdbm.log gdbm.pg \
  73.     gdbm.toc gdbm.tp gdbm.vr
  74.  
  75. TEXI_F = gdbm.info
  76.      
  77. SRCS = $(DBM_CF) $(NDBM_CF) $(GDBM_CF) $(TEST_CF)
  78.  
  79. OBJS = $(DBM_OF) $(NDBM_OF) $(GDBM_OF) @ALLOCA@
  80.  
  81. HDRS = gdbmdefs.h extern.h gdbmerrno.h systems.h dbm.h ndbm.h gdbmconst.h \
  82.     proto.h
  83.  
  84. MSCFILES = COPYING ChangeLog Makefile.in README gdbm.3 gdbm.texinfo \
  85.     gdbm.info NEWS INSTALL gdbm.proto gdbm.proto2 conv2gdbm.c \
  86.     configure configure.in alloca.c getopt.c getopt.h samp1.cc \
  87.     autoconf.h.in
  88.  
  89. DISTFILES = $(SRCS) $(HDRS) $(MSCFILES)
  90.  
  91. all: libgdbm.a
  92.  
  93. progs: $(PROGS)
  94.  
  95. install: libgdbm.a gdbm.h gdbm.info
  96.     $(INSTALL_DATA) libgdbm.a $(libdir)/libgdbm.a
  97.     $(INSTALL_DATA) gdbm.h $(includedir)/gdbm.h
  98.     $(INSTALL_DATA) $(srcdir)/gdbm.3 $(man3dir)/gdbm.3
  99.     $(INSTALL_DATA) $(srcdir)/gdbm.info $(infodir)/gdbm.info
  100.  
  101. install-compat:
  102.     $(INSTALL_DATA) $(srcdir)/dbm.h $(includedir)/dbm.h
  103.     $(INSTALL_DATA) $(srcdir/ndbm.h $(includedir)/ndbm.h
  104.  
  105. libgdbm.a: $(OBJS) gdbm.h
  106.     rm -f libgdbm.a
  107.     ar q libgdbm.a $(OBJS)
  108.     $(RANLIB) libgdbm.a
  109.  
  110. gdbm.h:    gdbm.proto gdbmerrno.h gdbm.proto2
  111.     rm -f gdbm.h
  112.     cp $(srcdir)/gdbm.proto gdbm.h
  113.     chmod +w gdbm.h
  114.     grep _ $(srcdir)/gdbmerrno.h >> gdbm.h
  115.     cat $(srcdir)/gdbm.proto2 >> gdbm.h
  116.     chmod -w gdbm.h
  117.  
  118. testgdbm: testgdbm.o libgdbm.a @LIBOBJS@
  119.     $(CC) $(LDFLAGS) -o testgdbm testgdbm.o libgdbm.a @LIBOBJS@
  120.  
  121. testdbm: testdbm.o libgdbm.a
  122.     $(CC) $(LDFLAGS) -o testdbm testdbm.o libgdbm.a
  123.  
  124. tdbm: testdbm.o libgdbm.a
  125.     $(CC) $(LDFLAGS) -o tdbm testdbm.o $(LIBS)
  126.  
  127. testndbm.o: testndbm.c
  128.     $(CC) -c -I. -I$(srcdir) $(CFLAGS) $(DEFS) -DGNU $(srcdir)/testndbm.c
  129.  
  130. testndbm: testndbm.o libgdbm.a
  131.     $(CC) $(LDFLAGS) -o testndbm testndbm.o libgdbm.a
  132.  
  133. tndbm.o: testndbm.c
  134.     cp $(srcdir)/testndbm.c ./tndbm.c
  135.     $(CC) -c -I. -I$(srcdir) $(CFLAGS) $(DEFS) ./tndbm.c
  136.     rm -f ./tndbm.c
  137.  
  138. tndbm: tndbm.o libgdbm.a
  139.     $(CC) $(LDFLAGS) -o tndbm tndbm.o $(LIBS)
  140.  
  141. conv2gdbm: conv2gdbm.o libgdbm.a @LIBOBJS@
  142.     $(CC) $(LDFLAGS) -o conv2gdbm conv2gdbm.o $(LIBS) libgdbm.a @LIBOBJS@
  143.  
  144. lintgdbm: 
  145.     lint $(DEFS) $(LFLAGS) $(DBM_CF) $(NDBM_CF) $(GDBM_CF) testgdbm.c
  146.  
  147. TAGS: $(SRCS)
  148.     etags $(SRCS)
  149.  
  150. info: gdbm.info
  151.  
  152. gdbm.info:
  153.     $(MAKEINFO) $(srcdir)/gdbm.texinfo
  154.  
  155. dvi: gdbm.dvi
  156.  
  157. gdbm.dvi:
  158.     $(TEXI2DVI) $(srcdir)/gdbm.texinfo
  159.  
  160. clean:
  161.     rm -f $(PROGS) $(TEX_F) *.o core junk*
  162.  
  163. mostlyclean: clean
  164.  
  165. distclean: clean
  166.     rm -f Makefile autoconf.h config.status gdbm.h $(TEXI_F) *~
  167.  
  168. realclean: distclean
  169.     rm -f TAGS
  170.     -rm -f \
  171.       `sed -n 's/.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*/gdbm-\1/p' \
  172.         version.c`.tar.gz
  173.  
  174. dist:
  175.     echo \
  176.       `sed -n 's/.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*/gdbm-\1/p' \
  177.         version.c` > .fname
  178.     rm -rf `cat .fname`
  179.     mkdir `cat .fname`
  180.     ln $(DISTFILES) `cat .fname`
  181.     tar chf `cat .fname`.tar `cat .fname`
  182.     gzip `cat .fname`.tar
  183.     rm -rf `cat .fname` .fname
  184.  
  185. # dbm files
  186. dbminit.o:    autoconf.h gdbmdefs.h proto.h extern.h gdbmerrno.h
  187. delete.o:    autoconf.h gdbmdefs.h proto.h extern.h
  188. fetch.o:    autoconf.h gdbmdefs.h proto.h extern.h
  189. store.o:    autoconf.h gdbmdefs.h proto.h extern.h
  190. seq.o:        autoconf.h gdbmdefs.h proto.h extern.h
  191.  
  192. # ndbm files
  193. dbmopen.o:    autoconf.h gdbmdefs.h extern.h gdbmerrno.h
  194. dbmdelete.o:    autoconf.h gdbmdefs.h extern.h
  195. dbmfetch.o:    autoconf.h gdbmdefs.h extern.h
  196. dbmstore.o:    autoconf.h gdbmdefs.h extern.h
  197. dbmseq.o:    autoconf.h gdbmdefs.h extern.h
  198. dbmclose.o:    autoconf.h gdbmdefs.h systems.h
  199. dbmpagfno.o:    autoconf.h gdbmdefs.h extern.h
  200. dbmdirfno.o:    autoconf.h gdbmdefs.h extern.h
  201.  
  202.  
  203. # gdbm files
  204. gdbmclose.o:    autoconf.h gdbmdefs.h 
  205. gdbmdelete.o:    autoconf.h gdbmdefs.h gdbmerrno.h 
  206. gdbmfetch.o:    autoconf.h gdbmdefs.h gdbmerrno.h 
  207. gdbmopen.o:    autoconf.h gdbmdefs.h gdbmerrno.h 
  208. gdbmreorg.o:    autoconf.h gdbmdefs.h gdbmerrno.h extern.h
  209. gdbmseq.o:    autoconf.h gdbmdefs.h 
  210. gdbmstore.o:    autoconf.h gdbmdefs.h gdbmerrno.h 
  211.  
  212. # gdbm support files
  213. bucket.o:    autoconf.h gdbmdefs.h
  214. falloc.o:    autoconf.h gdbmdefs.h
  215. findkey.o:    autoconf.h gdbmdefs.h
  216. global.o:    autoconf.h gdbmdefs.h gdbmerrno.h 
  217. hash.o:        autoconf.h gdbmdefs.h
  218. update.o:    autoconf.h gdbmdefs.h
  219. version.o:
  220. extern.h:
  221. gdbmdefs.h:    gdbmconst.h systems.h
  222.     touch gdbmdefs.h
  223.  
  224. # other programs
  225. testgdbm.o:    autoconf.h gdbmdefs.h extern.h gdbmerrno.h systems.h
  226. testdbm.o:    autoconf.h
  227. testndbm.o:    autoconf.h ndbm.h
  228. tdbm.o:        autoconf.h
  229. conv2gdbm.o:    autoconf.h gdbm.h
  230.